if3(true, x, y) -> x
if3(false, x, y) -> y
eq2(0, 0) -> true
eq2(0, s1(x)) -> false
eq2(s1(x), 0) -> false
eq2(s1(x), s1(y)) -> eq2(x, y)
app2(nil, l) -> l
app2(cons2(x, l1), l2) -> cons2(x, app2(l1, l2))
app2(app2(l1, l2), l3) -> app2(l1, app2(l2, l3))
mem2(x, nil) -> false
mem2(x, cons2(y, l)) -> ifmem3(eq2(x, y), x, l)
ifmem3(true, x, l) -> true
ifmem3(false, x, l) -> mem2(x, l)
inter2(x, nil) -> nil
inter2(nil, x) -> nil
inter2(app2(l1, l2), l3) -> app2(inter2(l1, l3), inter2(l2, l3))
inter2(l1, app2(l2, l3)) -> app2(inter2(l1, l2), inter2(l1, l3))
inter2(cons2(x, l1), l2) -> ifinter4(mem2(x, l2), x, l1, l2)
inter2(l1, cons2(x, l2)) -> ifinter4(mem2(x, l1), x, l2, l1)
ifinter4(true, x, l1, l2) -> cons2(x, inter2(l1, l2))
ifinter4(false, x, l1, l2) -> inter2(l1, l2)
↳ QTRS
↳ DependencyPairsProof
if3(true, x, y) -> x
if3(false, x, y) -> y
eq2(0, 0) -> true
eq2(0, s1(x)) -> false
eq2(s1(x), 0) -> false
eq2(s1(x), s1(y)) -> eq2(x, y)
app2(nil, l) -> l
app2(cons2(x, l1), l2) -> cons2(x, app2(l1, l2))
app2(app2(l1, l2), l3) -> app2(l1, app2(l2, l3))
mem2(x, nil) -> false
mem2(x, cons2(y, l)) -> ifmem3(eq2(x, y), x, l)
ifmem3(true, x, l) -> true
ifmem3(false, x, l) -> mem2(x, l)
inter2(x, nil) -> nil
inter2(nil, x) -> nil
inter2(app2(l1, l2), l3) -> app2(inter2(l1, l3), inter2(l2, l3))
inter2(l1, app2(l2, l3)) -> app2(inter2(l1, l2), inter2(l1, l3))
inter2(cons2(x, l1), l2) -> ifinter4(mem2(x, l2), x, l1, l2)
inter2(l1, cons2(x, l2)) -> ifinter4(mem2(x, l1), x, l2, l1)
ifinter4(true, x, l1, l2) -> cons2(x, inter2(l1, l2))
ifinter4(false, x, l1, l2) -> inter2(l1, l2)
APP2(app2(l1, l2), l3) -> APP2(l2, l3)
MEM2(x, cons2(y, l)) -> EQ2(x, y)
IFINTER4(true, x, l1, l2) -> INTER2(l1, l2)
INTER2(app2(l1, l2), l3) -> INTER2(l2, l3)
INTER2(app2(l1, l2), l3) -> INTER2(l1, l3)
INTER2(l1, cons2(x, l2)) -> MEM2(x, l1)
MEM2(x, cons2(y, l)) -> IFMEM3(eq2(x, y), x, l)
INTER2(l1, app2(l2, l3)) -> APP2(inter2(l1, l2), inter2(l1, l3))
IFMEM3(false, x, l) -> MEM2(x, l)
INTER2(l1, cons2(x, l2)) -> IFINTER4(mem2(x, l1), x, l2, l1)
EQ2(s1(x), s1(y)) -> EQ2(x, y)
INTER2(l1, app2(l2, l3)) -> INTER2(l1, l3)
INTER2(cons2(x, l1), l2) -> IFINTER4(mem2(x, l2), x, l1, l2)
INTER2(l1, app2(l2, l3)) -> INTER2(l1, l2)
INTER2(app2(l1, l2), l3) -> APP2(inter2(l1, l3), inter2(l2, l3))
INTER2(cons2(x, l1), l2) -> MEM2(x, l2)
APP2(app2(l1, l2), l3) -> APP2(l1, app2(l2, l3))
IFINTER4(false, x, l1, l2) -> INTER2(l1, l2)
APP2(cons2(x, l1), l2) -> APP2(l1, l2)
if3(true, x, y) -> x
if3(false, x, y) -> y
eq2(0, 0) -> true
eq2(0, s1(x)) -> false
eq2(s1(x), 0) -> false
eq2(s1(x), s1(y)) -> eq2(x, y)
app2(nil, l) -> l
app2(cons2(x, l1), l2) -> cons2(x, app2(l1, l2))
app2(app2(l1, l2), l3) -> app2(l1, app2(l2, l3))
mem2(x, nil) -> false
mem2(x, cons2(y, l)) -> ifmem3(eq2(x, y), x, l)
ifmem3(true, x, l) -> true
ifmem3(false, x, l) -> mem2(x, l)
inter2(x, nil) -> nil
inter2(nil, x) -> nil
inter2(app2(l1, l2), l3) -> app2(inter2(l1, l3), inter2(l2, l3))
inter2(l1, app2(l2, l3)) -> app2(inter2(l1, l2), inter2(l1, l3))
inter2(cons2(x, l1), l2) -> ifinter4(mem2(x, l2), x, l1, l2)
inter2(l1, cons2(x, l2)) -> ifinter4(mem2(x, l1), x, l2, l1)
ifinter4(true, x, l1, l2) -> cons2(x, inter2(l1, l2))
ifinter4(false, x, l1, l2) -> inter2(l1, l2)
↳ QTRS
↳ DependencyPairsProof
↳ QDP
↳ DependencyGraphProof
APP2(app2(l1, l2), l3) -> APP2(l2, l3)
MEM2(x, cons2(y, l)) -> EQ2(x, y)
IFINTER4(true, x, l1, l2) -> INTER2(l1, l2)
INTER2(app2(l1, l2), l3) -> INTER2(l2, l3)
INTER2(app2(l1, l2), l3) -> INTER2(l1, l3)
INTER2(l1, cons2(x, l2)) -> MEM2(x, l1)
MEM2(x, cons2(y, l)) -> IFMEM3(eq2(x, y), x, l)
INTER2(l1, app2(l2, l3)) -> APP2(inter2(l1, l2), inter2(l1, l3))
IFMEM3(false, x, l) -> MEM2(x, l)
INTER2(l1, cons2(x, l2)) -> IFINTER4(mem2(x, l1), x, l2, l1)
EQ2(s1(x), s1(y)) -> EQ2(x, y)
INTER2(l1, app2(l2, l3)) -> INTER2(l1, l3)
INTER2(cons2(x, l1), l2) -> IFINTER4(mem2(x, l2), x, l1, l2)
INTER2(l1, app2(l2, l3)) -> INTER2(l1, l2)
INTER2(app2(l1, l2), l3) -> APP2(inter2(l1, l3), inter2(l2, l3))
INTER2(cons2(x, l1), l2) -> MEM2(x, l2)
APP2(app2(l1, l2), l3) -> APP2(l1, app2(l2, l3))
IFINTER4(false, x, l1, l2) -> INTER2(l1, l2)
APP2(cons2(x, l1), l2) -> APP2(l1, l2)
if3(true, x, y) -> x
if3(false, x, y) -> y
eq2(0, 0) -> true
eq2(0, s1(x)) -> false
eq2(s1(x), 0) -> false
eq2(s1(x), s1(y)) -> eq2(x, y)
app2(nil, l) -> l
app2(cons2(x, l1), l2) -> cons2(x, app2(l1, l2))
app2(app2(l1, l2), l3) -> app2(l1, app2(l2, l3))
mem2(x, nil) -> false
mem2(x, cons2(y, l)) -> ifmem3(eq2(x, y), x, l)
ifmem3(true, x, l) -> true
ifmem3(false, x, l) -> mem2(x, l)
inter2(x, nil) -> nil
inter2(nil, x) -> nil
inter2(app2(l1, l2), l3) -> app2(inter2(l1, l3), inter2(l2, l3))
inter2(l1, app2(l2, l3)) -> app2(inter2(l1, l2), inter2(l1, l3))
inter2(cons2(x, l1), l2) -> ifinter4(mem2(x, l2), x, l1, l2)
inter2(l1, cons2(x, l2)) -> ifinter4(mem2(x, l1), x, l2, l1)
ifinter4(true, x, l1, l2) -> cons2(x, inter2(l1, l2))
ifinter4(false, x, l1, l2) -> inter2(l1, l2)
↳ QTRS
↳ DependencyPairsProof
↳ QDP
↳ DependencyGraphProof
↳ AND
↳ QDP
↳ QDPOrderProof
↳ QDP
↳ QDP
↳ QDP
APP2(app2(l1, l2), l3) -> APP2(l2, l3)
APP2(app2(l1, l2), l3) -> APP2(l1, app2(l2, l3))
APP2(cons2(x, l1), l2) -> APP2(l1, l2)
if3(true, x, y) -> x
if3(false, x, y) -> y
eq2(0, 0) -> true
eq2(0, s1(x)) -> false
eq2(s1(x), 0) -> false
eq2(s1(x), s1(y)) -> eq2(x, y)
app2(nil, l) -> l
app2(cons2(x, l1), l2) -> cons2(x, app2(l1, l2))
app2(app2(l1, l2), l3) -> app2(l1, app2(l2, l3))
mem2(x, nil) -> false
mem2(x, cons2(y, l)) -> ifmem3(eq2(x, y), x, l)
ifmem3(true, x, l) -> true
ifmem3(false, x, l) -> mem2(x, l)
inter2(x, nil) -> nil
inter2(nil, x) -> nil
inter2(app2(l1, l2), l3) -> app2(inter2(l1, l3), inter2(l2, l3))
inter2(l1, app2(l2, l3)) -> app2(inter2(l1, l2), inter2(l1, l3))
inter2(cons2(x, l1), l2) -> ifinter4(mem2(x, l2), x, l1, l2)
inter2(l1, cons2(x, l2)) -> ifinter4(mem2(x, l1), x, l2, l1)
ifinter4(true, x, l1, l2) -> cons2(x, inter2(l1, l2))
ifinter4(false, x, l1, l2) -> inter2(l1, l2)
The following pairs can be strictly oriented and are deleted.
The remaining pairs can at least by weakly be oriented.
APP2(app2(l1, l2), l3) -> APP2(l2, l3)
APP2(app2(l1, l2), l3) -> APP2(l1, app2(l2, l3))
APP2(cons2(x, l1), l2) -> APP2(l1, l2)
[APP2, app2] > cons1
nil > cons1
app2(nil, l) -> l
app2(cons2(x, l1), l2) -> cons2(x, app2(l1, l2))
app2(app2(l1, l2), l3) -> app2(l1, app2(l2, l3))
↳ QTRS
↳ DependencyPairsProof
↳ QDP
↳ DependencyGraphProof
↳ AND
↳ QDP
↳ QDPOrderProof
↳ QDP
↳ PisEmptyProof
↳ QDP
↳ QDP
↳ QDP
if3(true, x, y) -> x
if3(false, x, y) -> y
eq2(0, 0) -> true
eq2(0, s1(x)) -> false
eq2(s1(x), 0) -> false
eq2(s1(x), s1(y)) -> eq2(x, y)
app2(nil, l) -> l
app2(cons2(x, l1), l2) -> cons2(x, app2(l1, l2))
app2(app2(l1, l2), l3) -> app2(l1, app2(l2, l3))
mem2(x, nil) -> false
mem2(x, cons2(y, l)) -> ifmem3(eq2(x, y), x, l)
ifmem3(true, x, l) -> true
ifmem3(false, x, l) -> mem2(x, l)
inter2(x, nil) -> nil
inter2(nil, x) -> nil
inter2(app2(l1, l2), l3) -> app2(inter2(l1, l3), inter2(l2, l3))
inter2(l1, app2(l2, l3)) -> app2(inter2(l1, l2), inter2(l1, l3))
inter2(cons2(x, l1), l2) -> ifinter4(mem2(x, l2), x, l1, l2)
inter2(l1, cons2(x, l2)) -> ifinter4(mem2(x, l1), x, l2, l1)
ifinter4(true, x, l1, l2) -> cons2(x, inter2(l1, l2))
ifinter4(false, x, l1, l2) -> inter2(l1, l2)
↳ QTRS
↳ DependencyPairsProof
↳ QDP
↳ DependencyGraphProof
↳ AND
↳ QDP
↳ QDP
↳ QDPOrderProof
↳ QDP
↳ QDP
EQ2(s1(x), s1(y)) -> EQ2(x, y)
if3(true, x, y) -> x
if3(false, x, y) -> y
eq2(0, 0) -> true
eq2(0, s1(x)) -> false
eq2(s1(x), 0) -> false
eq2(s1(x), s1(y)) -> eq2(x, y)
app2(nil, l) -> l
app2(cons2(x, l1), l2) -> cons2(x, app2(l1, l2))
app2(app2(l1, l2), l3) -> app2(l1, app2(l2, l3))
mem2(x, nil) -> false
mem2(x, cons2(y, l)) -> ifmem3(eq2(x, y), x, l)
ifmem3(true, x, l) -> true
ifmem3(false, x, l) -> mem2(x, l)
inter2(x, nil) -> nil
inter2(nil, x) -> nil
inter2(app2(l1, l2), l3) -> app2(inter2(l1, l3), inter2(l2, l3))
inter2(l1, app2(l2, l3)) -> app2(inter2(l1, l2), inter2(l1, l3))
inter2(cons2(x, l1), l2) -> ifinter4(mem2(x, l2), x, l1, l2)
inter2(l1, cons2(x, l2)) -> ifinter4(mem2(x, l1), x, l2, l1)
ifinter4(true, x, l1, l2) -> cons2(x, inter2(l1, l2))
ifinter4(false, x, l1, l2) -> inter2(l1, l2)
The following pairs can be strictly oriented and are deleted.
The remaining pairs can at least by weakly be oriented.
EQ2(s1(x), s1(y)) -> EQ2(x, y)
trivial
↳ QTRS
↳ DependencyPairsProof
↳ QDP
↳ DependencyGraphProof
↳ AND
↳ QDP
↳ QDP
↳ QDPOrderProof
↳ QDP
↳ PisEmptyProof
↳ QDP
↳ QDP
if3(true, x, y) -> x
if3(false, x, y) -> y
eq2(0, 0) -> true
eq2(0, s1(x)) -> false
eq2(s1(x), 0) -> false
eq2(s1(x), s1(y)) -> eq2(x, y)
app2(nil, l) -> l
app2(cons2(x, l1), l2) -> cons2(x, app2(l1, l2))
app2(app2(l1, l2), l3) -> app2(l1, app2(l2, l3))
mem2(x, nil) -> false
mem2(x, cons2(y, l)) -> ifmem3(eq2(x, y), x, l)
ifmem3(true, x, l) -> true
ifmem3(false, x, l) -> mem2(x, l)
inter2(x, nil) -> nil
inter2(nil, x) -> nil
inter2(app2(l1, l2), l3) -> app2(inter2(l1, l3), inter2(l2, l3))
inter2(l1, app2(l2, l3)) -> app2(inter2(l1, l2), inter2(l1, l3))
inter2(cons2(x, l1), l2) -> ifinter4(mem2(x, l2), x, l1, l2)
inter2(l1, cons2(x, l2)) -> ifinter4(mem2(x, l1), x, l2, l1)
ifinter4(true, x, l1, l2) -> cons2(x, inter2(l1, l2))
ifinter4(false, x, l1, l2) -> inter2(l1, l2)
↳ QTRS
↳ DependencyPairsProof
↳ QDP
↳ DependencyGraphProof
↳ AND
↳ QDP
↳ QDP
↳ QDP
↳ QDPOrderProof
↳ QDP
MEM2(x, cons2(y, l)) -> IFMEM3(eq2(x, y), x, l)
IFMEM3(false, x, l) -> MEM2(x, l)
if3(true, x, y) -> x
if3(false, x, y) -> y
eq2(0, 0) -> true
eq2(0, s1(x)) -> false
eq2(s1(x), 0) -> false
eq2(s1(x), s1(y)) -> eq2(x, y)
app2(nil, l) -> l
app2(cons2(x, l1), l2) -> cons2(x, app2(l1, l2))
app2(app2(l1, l2), l3) -> app2(l1, app2(l2, l3))
mem2(x, nil) -> false
mem2(x, cons2(y, l)) -> ifmem3(eq2(x, y), x, l)
ifmem3(true, x, l) -> true
ifmem3(false, x, l) -> mem2(x, l)
inter2(x, nil) -> nil
inter2(nil, x) -> nil
inter2(app2(l1, l2), l3) -> app2(inter2(l1, l3), inter2(l2, l3))
inter2(l1, app2(l2, l3)) -> app2(inter2(l1, l2), inter2(l1, l3))
inter2(cons2(x, l1), l2) -> ifinter4(mem2(x, l2), x, l1, l2)
inter2(l1, cons2(x, l2)) -> ifinter4(mem2(x, l1), x, l2, l1)
ifinter4(true, x, l1, l2) -> cons2(x, inter2(l1, l2))
ifinter4(false, x, l1, l2) -> inter2(l1, l2)
The following pairs can be strictly oriented and are deleted.
The remaining pairs can at least by weakly be oriented.
MEM2(x, cons2(y, l)) -> IFMEM3(eq2(x, y), x, l)
Used ordering: Combined order from the following AFS and order.
IFMEM3(false, x, l) -> MEM2(x, l)
[eq1, 0, true] > [false, s]
↳ QTRS
↳ DependencyPairsProof
↳ QDP
↳ DependencyGraphProof
↳ AND
↳ QDP
↳ QDP
↳ QDP
↳ QDPOrderProof
↳ QDP
↳ DependencyGraphProof
↳ QDP
IFMEM3(false, x, l) -> MEM2(x, l)
if3(true, x, y) -> x
if3(false, x, y) -> y
eq2(0, 0) -> true
eq2(0, s1(x)) -> false
eq2(s1(x), 0) -> false
eq2(s1(x), s1(y)) -> eq2(x, y)
app2(nil, l) -> l
app2(cons2(x, l1), l2) -> cons2(x, app2(l1, l2))
app2(app2(l1, l2), l3) -> app2(l1, app2(l2, l3))
mem2(x, nil) -> false
mem2(x, cons2(y, l)) -> ifmem3(eq2(x, y), x, l)
ifmem3(true, x, l) -> true
ifmem3(false, x, l) -> mem2(x, l)
inter2(x, nil) -> nil
inter2(nil, x) -> nil
inter2(app2(l1, l2), l3) -> app2(inter2(l1, l3), inter2(l2, l3))
inter2(l1, app2(l2, l3)) -> app2(inter2(l1, l2), inter2(l1, l3))
inter2(cons2(x, l1), l2) -> ifinter4(mem2(x, l2), x, l1, l2)
inter2(l1, cons2(x, l2)) -> ifinter4(mem2(x, l1), x, l2, l1)
ifinter4(true, x, l1, l2) -> cons2(x, inter2(l1, l2))
ifinter4(false, x, l1, l2) -> inter2(l1, l2)
↳ QTRS
↳ DependencyPairsProof
↳ QDP
↳ DependencyGraphProof
↳ AND
↳ QDP
↳ QDP
↳ QDP
↳ QDP
INTER2(l1, cons2(x, l2)) -> IFINTER4(mem2(x, l1), x, l2, l1)
INTER2(l1, app2(l2, l3)) -> INTER2(l1, l3)
INTER2(cons2(x, l1), l2) -> IFINTER4(mem2(x, l2), x, l1, l2)
INTER2(l1, app2(l2, l3)) -> INTER2(l1, l2)
IFINTER4(true, x, l1, l2) -> INTER2(l1, l2)
INTER2(app2(l1, l2), l3) -> INTER2(l2, l3)
INTER2(app2(l1, l2), l3) -> INTER2(l1, l3)
IFINTER4(false, x, l1, l2) -> INTER2(l1, l2)
if3(true, x, y) -> x
if3(false, x, y) -> y
eq2(0, 0) -> true
eq2(0, s1(x)) -> false
eq2(s1(x), 0) -> false
eq2(s1(x), s1(y)) -> eq2(x, y)
app2(nil, l) -> l
app2(cons2(x, l1), l2) -> cons2(x, app2(l1, l2))
app2(app2(l1, l2), l3) -> app2(l1, app2(l2, l3))
mem2(x, nil) -> false
mem2(x, cons2(y, l)) -> ifmem3(eq2(x, y), x, l)
ifmem3(true, x, l) -> true
ifmem3(false, x, l) -> mem2(x, l)
inter2(x, nil) -> nil
inter2(nil, x) -> nil
inter2(app2(l1, l2), l3) -> app2(inter2(l1, l3), inter2(l2, l3))
inter2(l1, app2(l2, l3)) -> app2(inter2(l1, l2), inter2(l1, l3))
inter2(cons2(x, l1), l2) -> ifinter4(mem2(x, l2), x, l1, l2)
inter2(l1, cons2(x, l2)) -> ifinter4(mem2(x, l1), x, l2, l1)
ifinter4(true, x, l1, l2) -> cons2(x, inter2(l1, l2))
ifinter4(false, x, l1, l2) -> inter2(l1, l2)